home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Giga Games 1
/
Giga Games.iso
/
net
/
go
/
prog
/
nextgo23.taz
/
nextgo23
/
NeXTGo
/
seed.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-09
|
238 b
|
15 lines
#include "comment.header"
#include <sys/time.h>
void seed(int *i)
/* start seed of random number generator for Sun */
{
struct timeval tp;
struct timezone tzp;
gettimeofday(&tp, &tzp);
*i = tp.tv_usec;
} /* end seed */